home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 15002 / 15002.xpi / chrome / content / settings.js < prev    next >
Text File  |  2010-01-22  |  468b  |  20 lines

  1.  
  2. var fastYoutubeDownloaderSettings = {
  3.  
  4.     ffPreferences : null,
  5.  
  6.     init : function() {
  7.  
  8.     },
  9.     save : function () {
  10.         var wm = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator);
  11.         var e = wm.getEnumerator(null);
  12.         while (e.hasMoreElements()) {
  13.             var w = e.getNext();
  14.             if (w.fastYoutubeDownloader) {
  15.                w.fastYoutubeDownloader.initExtensionPref();
  16.             }
  17.         }    
  18.     }
  19. }
  20.